home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / fax / src / util / transcript.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1994-08-01  |  2KB  |  66 lines

  1. #! /bin/sh
  2. #    $Header: /usr/people/sam/fax/util/RCS/transcript.sh,v 1.4 1994/02/28 14:24:44 sam Rel $
  3. #
  4. # FlexFAX Facsimile Software
  5. #
  6. # Copyright (c) 1990, 1991, 1992, 1993, 1994 Sam Leffler
  7. # Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
  8. # Permission to use, copy, modify, distribute, and sell this software and 
  9. # its documentation for any purpose is hereby granted without fee, provided
  10. # that (i) the above copyright notices and this permission notice appear in
  11. # all copies of the software and related documentation, and (ii) the names of
  12. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  13. # publicity relating to the software without the specific, prior written
  14. # permission of Sam Leffler and Silicon Graphics.
  15. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  19. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  20. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  21. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  22. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  23. # OF THIS SOFTWARE.
  24. #
  25.  
  26. #
  27. # transcript server-pid number
  28. #
  29. # Print the transcript of the last call placed to
  30. # number by the server process with server-pid.
  31. #
  32. PATH=/bin:/usr/bin:
  33. test -d /usr/ucb  && PATH=$PATH:/usr/ucb        # Sun and others
  34. test -d /usr/bsd  && PATH=$PATH:/usr/bsd        # Silicon Graphics
  35. test -d /usr/5bin && PATH=/usr/5bin:$PATH:/usr/etc    # Sun and others
  36. test -d /usr/sbin && PATH=/usr/sbin:$PATH        # 4.4BSD-derived
  37.  
  38. if [ $# != 2 ]; then
  39.     echo "Usage: transcript pid number"
  40.     exit 1
  41. fi
  42. pid=$1 number=$2
  43.  
  44. echo ""
  45. echo "    ---- Transcript of session follows ----"
  46. echo ""
  47. LOGFILE=log/`echo $number | sed -e 's/[^0-9]//g'`
  48. if [ -f $LOGFILE ]; then
  49.     RANGE="`grep -n $pid $LOGFILE | grep SESSION | tail -2 | cut -d: -f 1`"
  50.     START=`echo "$RANGE" | sed '2,$d'`
  51.     END=`echo "$RANGE" | tail -1`
  52.     if [ "$START" -a "$END" ]; then
  53.     sed -n -e "1,${START}d" -e "${END},\$d" \
  54.         -e '/start.*timer/d' -e '/stop.*timer/d' \
  55.         -e '/-- data/d' \
  56.         -e "/$pid/p" $LOGFILE
  57.     else
  58.     echo "No transcript available."
  59.     fi
  60. else
  61.     echo "No transcript available."
  62. fi
  63.